All Questions
8 questions
0votes
0answers
87views
Securing microservices with Spring Security JWT
I would like to build a RESTful microservices architecture where each microservice acts as a resource server. Additionally, there will be an authorization server responsible only for user registration,...
2votes
1answer
57views
Any possible issues with my approach to Access Management where I'm associating the list of Departments with the User class?
I have a spring boot project with JWT being used for Spring Security. I want to implement Access Management in my project and I'm using this approach. In my project, whenever a user is created, a list ...
4votes
0answers
3kviews
Reactive JWT authentication using Spring webflux
Greeting to all senior devs here. I'm trying to create a project for my small business. There are not many tutorial on how to create Reactive JWT authentication with Spring webflux. So I'm a bit ...
1vote
1answer
181views
3votes
0answers
90views
JWT authentication system login through API
This is my first time writing an authentication system. Here's how it works, first client needs to send credential within authorization header like { Authorization : 'Basic ' + credential } through ...
3votes
1answer
3kviews
Effective & Secure Method to populate Access Token for authorization header in Rest Template
I am trying to consume a REST endpoint by using the RestTemplate Library provided by the spring framework. The endpoint also demands a Bearer Access Token as its authorization header, which is only ...
10votes
1answer
6kviews
Spring JWT authentication using cookies
I'm working on a experimental code which allows users to authorize using JWT's jjwt library. Here's what I have done so far on authentication and authorization flow....
10votes
2answers
41kviews
Preventing XSS attacks in a Spring MVC application controller
One of the URL in my application is vulnerable to XSS attack, so I am handling it in the below way. I created a util class: ...